Merged
Conversation
- Enable CI for the dev branch. - permissions to the ffmpeg test output directory. - Update CI test video download to use H264 codec instead of AV1. - test: add 777 permissions to HLS output directory in ffmpeg test
…est script to skip redundant builds.
Owner
Author
PR #8 commit https://github.com/maulik-mk/mp.ii-worker/pull/8/changes/2aff64ff22a5c654508b9c3c1fd80af53a785b69Optimizes the CI workflow by introducing Docker Layer Caching and refining the test script logic to significantly speed up build times. Key Changes:
commit massage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release : v0.1.0
This pull request introduces a complete CI/CD pipeline and Docker-based build/test system for an FFmpeg worker, focusing on reproducible builds, minimal image footprint, and robust automated testing. The main changes include a new GitHub Actions workflow for continuous integration, a multi-stage
Dockerfilefor optimized FFmpeg builds, a comprehensive shell script for testing the image and its capabilities, and a newpackage.jsonfor project metadata.CI/CD Pipeline and Build System
.github/workflows/ci.ymlto automate building, testing, and pushing Docker images to GitHub Container Registry, including test asset download and concurrency management.Dockerfilethat builds FFmpeg from source with only H.264 and AAC support, strips unnecessary features for a minimal, secure runtime, and runs as a non-root user.Testing and Validation
test/ffmpeg.test.sh, a strict-mode shell script that builds the Docker image, verifies FFmpeg/FFprobe versions and codecs, runs transcoding and HLS adaptive bitrate tests, and reports image statistics.Project Metadata
package.jsonto define project metadata, keywords, repository info, and licensing for the FFmpeg worker.